Created: 2022-07-27
Tags: #fleeting
An example of a payload could be;
-> getting a shell,
-> loading a malware or backdoor to the target system,
-> running a command,
Metasploit has ability to send different payloads that can open shells on the target system. Shells is what gives us ability to send system commands remotely.

Metasploit has a subtle way to help you identify single (also called “inline”) payloads and staged payloads.
generic/shell_reverse_tcp
windows/x64/shell/reverse_tcp
Both are reverse Windows shells.
The former is an inline or singles payload, as indicated by the “_” between “shell” and “reverse”. While the latter is a staged payload, as indicated by the “/” between “shell” and “reverse”.